curl --request POST \
--url https://use.hoop.dev/api/signup \
--header 'Content-Type: application/json' \
--data '{
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}'
{
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}
Signup anonymous authenticated user. This endpoint is only used for multi tenant setups.
curl --request POST \
--url https://use.hoop.dev/api/signup \
--header 'Content-Type: application/json' \
--data '{
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}'
{
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_name": "<string>",
"profile_name": "<string>",
"profile_picture": "<string>"
}
The request body resource
The body is of type object
.
OK
The response is of type object
.
Was this page helpful?